@charset "utf-8";
/* CSS Document */

body, nav, ul, li, a  {margin: 1; padding: 1;}

body {
	font-family:Georgia, "Times New Roman", Times, serif;
	font-size:120%;
	}

blockquote {
	margin: 10px;
	color: #000;
}

a {text-decoration: none;}

.container {
    width: 100%;
    max-width: 2000px;
    margin: 10px auto;
	border: 2px solid #4a3832;
}
.navcontainer {
	width: 95%;
	max-width: 2000px;
	margin: 10px auto;
	background-color:#4a3832;
}
.toggleMenu {
    display:  none;
    background: #61788a;
	margin-left: 20px;
    padding: 10px 25px;
    color: #003;
	border-top: 3px solid #809cb2;
	border-left: 3px solid #809cb2;
    border-bottom: 3px solid #526574;
	border-right: 3px solid #526574;
}
.nav {
    list-style: none;
     *zoom: 1;
     background:#718f5d;
}
.nav:before,
.nav:after {
    content: " "; 
    display: table; 
}
.nav:after {
    clear: both;
}
.nav ul {
    list-style: none;
    width: 9em;
}
.nav a {
    padding: 10px 15px;
    color:#003;
}
.nav li {
    position: relative;
}
.nav > li {
    float: left;
    border-top: 3px solid #9db477;
	border-left: 3px solid #9db477;
    border-bottom: 3px solid #62714a;
	border-right: 3px solid #62714a;
}
.nav > li > .parent {
    background-image:url(../Images/downArrow.gif);
    background-repeat: no-repeat;
    background-position: right;
}
.nav > li > a {
    display: block;
}
.nav li  ul {
    position: absolute;
    left: -9999px;
}
.nav > li.hover > ul {
    left: 0;
}
.nav li li.hover ul {
    left: 100%;
    top: 0;
}
.nav li li a {
    display: block;
    background:#d9c87a;
    position: relative;
    z-index:100;
    border-top: 3px solid #f6e288;
	border-left: 3px solid #f6e288;
    border-bottom: 3px solid #b8aa67;
	border-right: 3px solid #b8aa67;
}
.nav li li li a {
    background:#5CB4B8;
    z-index:200;
    border-top: 1px solid #1d7a62;
}

@media screen and (max-width: 800px) {
    .active {
        display: block;
    }
    .nav > li {
        float: none;
    }
    .nav > li > .parent {
        background-position: 95% 50%;
    }
    .nav li li .parent {
        background-image:url(../Images/downArrow.gif);
        background-repeat: no-repeat;
        background-position: 95% 50%;
    }
    .nav ul {
        display: block;
        width: 100%;
    }
   .nav > li.hover > ul , .nav li li.hover ul {
        position: static;
    }

}